/* 重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Roboto Mono', monospace;
    background: #0a0a12;
    color: #00f3ff;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* 赛博朋克网格背景 */
.cyber-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* 扫描线效果 */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 243, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    z-index: 9999;
    pointer-events: none;
    animation: scanline 10s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* 主网格布局 */
.cyber-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    height: 100vh;
    gap: 0;
    position: relative;
    background: linear-gradient(135deg, #0a0a12 0%, #151522 100%);
}

/* 左侧播放器区域 */
.player-section {
    padding: 30px;
    border-right: 1px solid rgba(0, 243, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.player-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f3ff, transparent);
    z-index: 2;
}

/* 头部样式 */
.cyber-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.hologram-logo {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #00f3ff;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.hologram-line {
    position: absolute;
    width: 60px;
    height: 2px;
    background: #ff00ff;
    transform: rotate(45deg);
    opacity: 0.5;
}

.hologram-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.cyber-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(0, 243, 255, 0.5),
        0 0 20px rgba(0, 243, 255, 0.3);
}

.accent {
    color: #ff00ff;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.5),
        0 0 20px rgba(255, 0, 255, 0.3);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5555;
}

.status-dot.active {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: pulse 1.5s infinite;
}

.status-text {
    font-size: 0.9rem;
    color: #00ff88;
    letter-spacing: 1px;
}

/* 可视化区域 */
.visual-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hologram-disc {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disc-ring {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
}

.disc-ring.outer {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 243, 255, 0.3);
    animation: rotate 20s linear infinite;
}

.disc-ring.middle {
    width: 70%;
    height: 70%;
    border-color: rgba(255, 0, 255, 0.3);
    animation: rotate 15s linear infinite reverse;
}

.disc-ring.inner {
    width: 40%;
    height: 40%;
    border-color: rgba(0, 255, 136, 0.3);
    animation: rotate 10s linear infinite;
}

.disc-center {
    width: 80px;
    height: 80px;
    background: #151522;
    border-radius: 50%;
    border: 2px solid #00f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.data-stream {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.data-bit {
    width: 20px;
    height: 2px;
    background: #00f3ff;
    animation: dataFlow 1s infinite;
}

.data-bit:nth-child(2) { animation-delay: 0.2s; }
.data-bit:nth-child(3) { animation-delay: 0.4s; }

@keyframes dataFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.disc-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.visualizer-container {
    width: 100%;
    max-width: 600px;
}

.waveform {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 60px;
}

.wave-bar {
    width: 8px;
    background: linear-gradient(to top, #00f3ff, #ff00ff);
    border-radius: 4px 4px 0 0;
    animation: wave 1.5s ease-in-out infinite;
    opacity: 0.7;
}

.wave-bar:nth-child(odd) { animation-delay: 0.2s; }
.wave-bar:nth-child(even) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

/* 歌曲信息 */
.track-info {
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
    align-items: center;
}

.info-label {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-value {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

#song-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00f3ff;
}

/* 控制区域 */
.controls-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.time-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.time-display span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #00ff88;
    min-width: 40px;
}

.time-track {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.time-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.time-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00f3ff, #ff00ff);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.time-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.8);
    pointer-events: none;
    transition: left 0.1s linear;
}

.time-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cyber-btn {
    position: relative;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: #00f3ff;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
}

.cyber-btn:hover {
    background: rgba(0, 243, 255, 0.2);
    border-color: #00f3ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

.cyber-btn:active {
    transform: translateY(0);
}

.cyber-btn.small {
    padding: 10px;
    font-size: 1rem;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.cyber-btn:hover .btn-glow {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00f3ff, #ff00ff);
    border: none;
    color: #fff;
}

.play-btn:hover {
    background: linear-gradient(135deg, #00ffff, #ff33ff);
}

.btn-icon {
    position: relative;
    z-index: 1;
}

.volume-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.volume-icon {
    color: #00f3ff;
    font-size: 1.2rem;
}

.volume-control {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.volume-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.volume-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #ff00ff, #00f3ff);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.volume-thumb {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.8);
    pointer-events: none;
    transition: left 0.1s linear;
}

.volume-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

/* 右侧播放列表 */
.playlist-section {
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.playlist-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}

.track-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #ff00ff;
    line-height: 1;
}

.count-label {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
}

.playlist-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0 30px;
}

.playlist-container::-webkit-scrollbar {
    width: 6px;
}

.playlist-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.playlist-container::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #00f3ff, #ff00ff);
    border-radius: 3px;
}

/* 播放列表项 */
.playlist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.playlist-item:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateX(5px);
}

.playlist-item.active {
    background: rgba(0, 243, 255, 0.15);
    border-color: #00f3ff;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.playlist-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #00f3ff;
    box-shadow: 0 0 10px #00f3ff;
}

.track-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #888;
    min-width: 30px;
}

.playlist-item.active .track-number {
    color: #00f3ff;
}

.track-info-small {
    flex-grow: 1;
    min-width: 0;
}

.track-title {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-artist {
    font-size: 0.9rem;
    color: #888;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-duration {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #888;
    min-width: 50px;
    text-align: right;
}

.playlist-item.active .track-duration {
    color: #ff00ff;
}

.playlist-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mode-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mode-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: pulse 2s infinite;
}

#mode-text {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 1px;
}

.playlist-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-line .label {
    font-size: 0.8rem;
    color: #888;
}

.info-line .value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #fff;
}

/* 响应式设计 */

/* 大屏幕适配 (1400px以上) */
@media (min-width: 1400px) {
    .cyber-grid {
        grid-template-columns: 5fr 3fr;
    }
    
    .player-section {
        padding: 40px;
        gap: 40px;
    }
    
    .cyber-header {
        padding-bottom: 25px;
    }
    
    .hologram-logo {
        width: 80px;
        height: 80px;
    }
    
    .hologram-circle {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }
    
    .hologram-line {
        width: 80px;
    }
    
    .cyber-title {
        font-size: 3.5rem;
    }
    
    .status-text {
        font-size: 1.1rem;
    }
    
    .visual-section {
        gap: 50px;
    }
    
    .hologram-disc {
        width: 380px;
        height: 380px;
    }
    
    .disc-center {
        width: 100px;
        height: 100px;
    }
    
    .data-bit {
        width: 25px;
        height: 3px;
    }
    
    .visualizer-container {
        max-width: 700px;
    }
    
    .waveform {
        height: 80px;
        gap: 6px;
    }
    
    .wave-bar {
        width: 10px;
    }
    
    @keyframes wave {
        0%, 100% { height: 25px; }
        50% { height: 55px; }
    }
    
    .track-info {
        padding: 25px;
    }
    
    .info-grid {
        gap: 12px 25px;
    }
    
    .info-label {
        font-size: 0.9rem;
    }
    
    .info-value {
        font-size: 1.3rem;
    }
    
    #song-title {
        font-size: 2rem;
    }
    
    .controls-section {
        gap: 30px;
    }
    
    .time-display span {
        font-size: 1.1rem;
        min-width: 50px;
    }
    
    .time-track {
        height: 8px;
    }
    
    .time-thumb {
        width: 16px;
        height: 16px;
    }
    
    .control-buttons {
        gap: 25px;
    }
    
    .cyber-btn {
        padding: 18px;
        font-size: 1.4rem;
    }
    
    .cyber-btn.small {
        padding: 12px;
        font-size: 1.2rem;
    }
    
    .play-btn {
        width: 90px;
        height: 90px;
    }
    
    .volume-icon {
        font-size: 1.4rem;
    }
    
    .volume-control {
        height: 8px;
    }
    
    .volume-thumb {
        width: 16px;
        height: 16px;
    }
    
    .playlist-header {
        padding: 30px 40px;
    }
    
    .header-left h3 {
        font-size: 1.8rem;
    }
    
    .count-number {
        font-size: 2.5rem;
    }
    
    .playlist-container {
        padding: 0 40px;
    }
    
    .playlist {
        gap: 10px;
        padding: 15px 0;
    }
    
    .playlist-item {
        padding: 18px;
        gap: 18px;
    }
    
    .track-number {
        font-size: 1rem;
        min-width: 35px;
    }
    
    .track-title {
        font-size: 1.1rem;
    }
    
    .track-artist {
        font-size: 1rem;
    }
    
    .track-duration {
        font-size: 1rem;
        min-width: 55px;
    }
    
    .playlist-footer {
        padding: 25px 40px;
    }
    
    #mode-text {
        font-size: 1rem;
    }
    
    .info-line .label {
        font-size: 0.9rem;
    }
    
    .info-line .value {
        font-size: 1rem;
    }
}

/* 中等屏幕适配 (1200px - 1400px) */
@media (max-width: 1400px) and (min-width: 1201px) {
    .cyber-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .player-section {
        padding: 35px;
    }
    
    .cyber-title {
        font-size: 3rem;
    }
    
    .hologram-disc {
        width: 320px;
        height: 320px;
    }
    
    .visualizer-container {
        max-width: 550px;
    }
}

/* 平板横屏适配 (992px - 1200px) */
@media (max-width: 1200px) {
    .cyber-grid {
        grid-template-columns: 3fr 2fr;
    }
    
    .player-section {
        padding: 25px;
        gap: 25px;
    }
    
    .cyber-header {
        padding-bottom: 15px;
    }
    
    .hologram-logo {
        width: 50px;
        height: 50px;
    }
    
    .hologram-circle {
        width: 35px;
        height: 35px;
    }
    
    .hologram-line {
        width: 50px;
    }
    
    .cyber-title {
        font-size: 2.2rem;
    }
    
    .visual-section {
        gap: 30px;
    }
    
    .hologram-disc {
        width: 250px;
        height: 250px;
    }
    
    .disc-center {
        width: 70px;
        height: 70px;
    }
    
    .visualizer-container {
        max-width: 450px;
    }
    
    .waveform {
        height: 50px;
        gap: 3px;
    }
    
    .wave-bar {
        width: 6px;
    }
    
    .track-info {
        padding: 15px;
    }
    
    .info-grid {
        gap: 8px 15px;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    #song-title {
        font-size: 1.3rem;
    }
    
    .controls-section {
        gap: 20px;
    }
    
    .cyber-btn {
        padding: 12px;
        font-size: 1.1rem;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .playlist-header {
        padding: 20px 25px;
    }
    
    .header-left h3 {
        font-size: 1.3rem;
    }
    
    .count-number {
        font-size: 1.8rem;
    }
    
    .playlist-container {
        padding: 0 25px;
    }
    
    .playlist-item {
        padding: 12px;
        gap: 12px;
    }
    
    .track-title {
        font-size: 0.95rem;
    }
    
    .track-artist {
        font-size: 0.85rem;
    }
    
    .playlist-footer {
        padding: 15px 25px;
    }
}

/* 平板竖屏适配 (768px - 992px) */
@media (max-width: 992px) {
    .cyber-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .player-section {
        border-right: none;
        border-bottom: 1px solid rgba(0, 243, 255, 0.1);
        padding: 20px;
        gap: 20px;
        max-height: 55vh;
        overflow-y: auto;
    }
    
    .cyber-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .status-indicator {
        align-self: flex-end;
    }
    
    .visual-section {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hologram-disc {
        width: 200px;
        height: 200px;
    }
    
    .disc-center {
        width: 60px;
        height: 60px;
    }
    
    .visualizer-container {
        max-width: 100%;
        width: 100%;
    }
    
    .track-info {
        width: 100%;
    }
    
    .controls-section {
        gap: 18px;
    }
    
    .playlist-section {
        max-height: 45vh;
    }
    
    .playlist-header {
        padding: 15px 20px;
    }
    
    .playlist-container {
        padding: 0 20px;
    }
    
    .playlist-footer {
        padding: 15px 20px;
    }
}

/* 手机横屏适配 (600px - 768px) */
@media (max-width: 768px) {
    .player-section {
        padding: 15px;
        gap: 15px;
        max-height: 60vh;
    }
    
    .hologram-logo {
        width: 45px;
        height: 45px;
    }
    
    .hologram-circle {
        width: 30px;
        height: 30px;
        border-width: 1.5px;
    }
    
    .hologram-line {
        width: 45px;
        height: 1.5px;
    }
    
    .cyber-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .status-text {
        font-size: 0.8rem;
    }
    
    .visual-section {
        gap: 15px;
    }
    
    .hologram-disc {
        width: 160px;
        height: 160px;
    }
    
    .disc-center {
        width: 50px;
        height: 50px;
    }
    
    .data-bit {
        width: 15px;
        height: 1.5px;
    }
    
    .waveform {
        height: 40px;
        gap: 2px;
    }
    
    .wave-bar {
        width: 4px;
    }
    
    @keyframes wave {
        0%, 100% { height: 15px; }
        50% { height: 30px; }
    }
    
    .track-info {
        padding: 12px;
    }
    
    .info-grid {
        gap: 6px 12px;
    }
    
    .info-label {
        font-size: 0.7rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    #song-title {
        font-size: 1.1rem;
    }
    
    .controls-section {
        gap: 15px;
    }
    
    .time-display span {
        font-size: 0.8rem;
        min-width: 35px;
    }
    
    .time-track {
        height: 4px;
    }
    
    .time-thumb {
        width: 10px;
        height: 10px;
    }
    
    .control-buttons {
        gap: 12px;
    }
    
    .cyber-btn {
        padding: 10px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    .cyber-btn.small {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .play-btn {
        width: 55px;
        height: 55px;
    }
    
    .volume-section {
        gap: 10px;
    }
    
    .volume-icon {
        font-size: 1rem;
    }
    
    .volume-control {
        height: 4px;
    }
    
    .volume-thumb {
        width: 10px;
        height: 10px;
    }
    
    .playlist-section {
        max-height: 40vh;
    }
    
    .playlist-header {
        padding: 12px 15px;
    }
    
    .header-left {
        gap: 12px;
    }
    
    .header-left h3 {
        font-size: 1.1rem;
    }
    
    .count-number {
        font-size: 1.5rem;
    }
    
    .count-label {
        font-size: 0.6rem;
    }
    
    .playlist-container {
        padding: 0 15px;
    }
    
    .playlist {
        gap: 6px;
        padding: 8px 0;
    }
    
    .playlist-item {
        padding: 10px;
        gap: 10px;
        border-radius: 6px;
    }
    
    .playlist-item:hover {
        transform: translateX(3px);
    }
    
    .track-number {
        font-size: 0.8rem;
        min-width: 25px;
    }
    
    .track-title {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .track-artist {
        font-size: 0.8rem;
    }
    
    .track-duration {
        font-size: 0.8rem;
        min-width: 40px;
    }
    
    .playlist-footer {
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .mode-indicator {
        gap: 8px;
    }
    
    .mode-dot {
        width: 6px;
        height: 6px;
    }
    
    #mode-text {
        font-size: 0.8rem;
    }
    
    .info-line .label,
    .info-line .value {
        font-size: 0.8rem;
    }
}

/* 手机竖屏适配 (480px - 600px) */
@media (max-width: 600px) {
    .player-section {
        padding: 12px;
        gap: 12px;
        max-height: 65vh;
    }
    
    .cyber-header {
        padding-bottom: 10px;
    }
    
    .hologram-logo {
        width: 40px;
        height: 40px;
    }
    
    .hologram-circle {
        width: 28px;
        height: 28px;
    }
    
    .hologram-line {
        width: 40px;
    }
    
    .cyber-title {
        font-size: 1.5rem;
    }
    
    .visual-section {
        gap: 12px;
    }
    
    .hologram-disc {
        width: 140px;
        height: 140px;
    }
    
    .disc-center {
        width: 45px;
        height: 45px;
    }
    
    .waveform {
        height: 35px;
    }
    
    .track-info {
        padding: 10px;
    }
    
    .info-grid {
        gap: 5px 10px;
    }
    
    #song-title {
        font-size: 1rem;
    }
    
    .control-buttons {
        gap: 10px;
    }
    
    .cyber-btn {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
    }
    
    .playlist-section {
        max-height: 35vh;
    }
    
    .playlist-header {
        padding: 10px 12px;
    }
    
    .header-left h3 {
        font-size: 1rem;
    }
    
    .playlist-container {
        padding: 0 12px;
    }
    
    .playlist-item {
        padding: 8px;
        gap: 8px;
    }
    
    .track-number {
        min-width: 22px;
        font-size: 0.75rem;
    }
    
    .track-title {
        font-size: 0.85rem;
    }
    
    .track-artist {
        font-size: 0.75rem;
    }
    
    .track-duration {
        font-size: 0.75rem;
        min-width: 35px;
    }
    
    .playlist-footer {
        padding: 10px 12px;
    }
}

/* 小屏手机适配 (480px以下) */
@media (max-width: 480px) {
    .player-section {
        padding: 10px;
        gap: 10px;
        max-height: 70vh;
    }
    
    .cyber-header {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 8px;
    }
    
    .hologram-logo {
        width: 35px;
        height: 35px;
    }
    
    .hologram-circle {
        width: 24px;
        height: 24px;
        border-width: 1.5px;
    }
    
    .hologram-line {
        width: 35px;
        height: 1.5px;
    }
    
    .cyber-title {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }
    
    .status-indicator {
        gap: 6px;
    }
    
    .status-dot {
        width: 8px;
        height: 8px;
    }
    
    .status-text {
        font-size: 0.7rem;
    }
    
    .visual-section {
        gap: 10px;
    }
    
    .hologram-disc {
        width: 120px;
        height: 120px;
    }
    
    .disc-center {
        width: 40px;
        height: 40px;
    }
    
    .data-bit {
        width: 12px;
        height: 1.5px;
    }
    
    .waveform {
        height: 30px;
        gap: 1.5px;
    }
    
    .wave-bar {
        width: 3px;
    }
    
    .track-info {
        padding: 8px;
        border-radius: 8px;
    }
    
    .info-grid {
        gap: 4px 8px;
    }
    
    .info-label {
        font-size: 0.65rem;
    }
    
    .info-value {
        font-size: 0.8rem;
    }
    
    #song-title {
        font-size: 0.9rem;
    }
    
    .controls-section {
        gap: 12px;
    }
    
    .time-display {
        gap: 8px;
    }
    
    .time-display span {
        font-size: 0.75rem;
        min-width: 30px;
    }
    
    .control-buttons {
        gap: 8px;
    }
    
    .cyber-btn {
        padding: 6px;
        font-size: 0.85rem;
        border-radius: 5px;
    }
    
    .cyber-btn.small {
        padding: 6px;
        font-size: 0.8rem;
    }
    
    .play-btn {
        width: 45px;
        height: 45px;
    }
    
    .volume-section {
        gap: 8px;
    }
    
    .volume-icon {
        font-size: 0.9rem;
    }
    
    .playlist-section {
        max-height: 30vh;
    }
    
    .playlist-header {
        padding: 8px 10px;
    }
    
    .header-left {
        gap: 8px;
    }
    
    .header-left h3 {
        font-size: 0.9rem;
    }
    
    .count-number {
        font-size: 1.2rem;
    }
    
    .count-label {
        font-size: 0.55rem;
    }
    
    .playlist-container {
        padding: 0 10px;
    }
    
    .playlist-container::-webkit-scrollbar {
        width: 4px;
    }
    
    .playlist {
        gap: 5px;
        padding: 5px 0;
    }
    
    .playlist-item {
        padding: 6px 8px;
        gap: 6px;
        border-radius: 5px;
    }
    
    .playlist-item.active::before {
        width: 2px;
    }
    
    .track-number {
        font-size: 0.7rem;
        min-width: 18px;
    }
    
    .track-title {
        font-size: 0.8rem;
    }
    
    .track-artist {
        font-size: 0.7rem;
    }
    
    .track-duration {
        font-size: 0.7rem;
        min-width: 30px;
    }
    
    .playlist-footer {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .mode-dot {
        width: 5px;
        height: 5px;
    }
    
    #mode-text {
        font-size: 0.7rem;
    }
    
    .info-line .label,
    .info-line .value {
        font-size: 0.7rem;
    }
}